home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / UTILENUS / SLIC.LZH / TSWSS.HLP < prev    next >
Text File  |  1986-09-14  |  8KB  |  191 lines

  1. .PA0
  2.     Spread Sheet Help File - Select Choice or Press Esc to Quit
  3.  
  4.           1 - Cursor Controls. Moving about the sheet and screen.
  5.  
  6.           2 - Cell Information
  7.  
  8.           3 - Math Operators and sample formulas
  9.  
  10.           4 - Linking Spread Sheets
  11.  
  12.           5 - Built-In Functions
  13.  
  14.           6 - Special Functions for Look up tables lists
  15.  
  16.           7 - Entering data and creating graphic bars
  17.  
  18.           8 - Summary of the Command and Function Menu
  19.  
  20. .PA
  21. .PA1
  22. Cursor Commands/Controls:
  23.  
  24. Move up one cell     =  Ctrl E  :  Move up one cell    =  <Up arrow> key
  25. Move to the left     =  Ctrl S  :  Move to the Left    =  <left arrow> key
  26.  
  27. Move down one cell   =  Ctrl X  :  Move down one cell  =  <down arrow> key
  28. Move one cell right  =  Ctrl D  :  Move one cell right =  <right arrow> key
  29.  
  30. Delete Character     =  Ctrl G  :  Delete Character    =  <del> key
  31. Delete Caracter Left =  Ctrl H  :  Delete Caracter Left=  <backspace> key
  32.  
  33. Move down 20 lines   =  Ctrl C  :  Move down 20 lines  =  <Pg Down> key
  34. Move up 20 lines     =  Ctrl R  :  Move up 20 lines    =  <Pg Up> key
  35.  
  36. Move to Top of Sheet =  Ctrl A  :  Move to Top of sheet=  <Home> key
  37. Move to End of used  =  Ctrl F  :  Move to End of used =  <End> key
  38.  
  39. Copy single cell with "Ctrl Y" and Recall copied cell with "Ctrl P"
  40.  
  41. Press "Ctrl G" to switch background lines (boxes) on and off.
  42. .PA
  43. .PA2
  44. Cell Info:
  45.  
  46. Cells may contain numbers, a formula, text or grahic characters.
  47. The cell type, its coordinates and contents if it is numeric or a
  48. formula are shown at the bottom left corner on the screen.
  49.  
  50. Example:
  51. A 5   Value:    (A1:A4)
  52.         This means that the current cell is A5 and that it
  53.         contains a value resulting from formula that adds all
  54.         the cells from A1 thru A4. The result of the formula
  55.         is shown at the cell location.
  56.  
  57. A10   Text:
  58.         This means that Cell A10 contains text or is empty. The
  59.         actual text is shown only at the cell location.
  60.  
  61. A12   Value:    1000.00
  62.         This means that Cell A12 is a value cell containing a number
  63.         The result or number is also show at the cell location.
  64. .PA
  65. .PA3
  66. Math Operators                 Example
  67.  
  68.   addition:         '+'    (A10 + A11)
  69.   multiplication:   '*'    (A10 * 1.5)
  70.   subtraction:      '-'    (A10 - A11)
  71.   division:         '/'    (A10 / A12)
  72.  
  73. To raise a number to any power use the up caret,  '^',
  74. ie.. (2^10) will raise the number '2' to the '10th power'.
  75. The character ':' (colon) is used to denote a range of cells
  76. to add, ie..(A1 : A5) means to add and total all cells A1 thru A5.
  77.  
  78. (A1+(B2-C7))    Subtracts cell C7 from B2 and adds the result to cell A1
  79. ((A1:A22)/22)   The sum total of cells:  'A1 thru A22' divided by 22.
  80. (A1:B5)         The sum total of cells:  'A1 thru A5 and B1 thru B5'
  81. (A1*(1.072^10)) Multiplys cell A1 by the result of 1.072 to
  82.                 the 10th power. This is a future value formula.
  83.  
  84. Note: Nested or mulitiple operations MUST be contained in parentheses
  85.       or your result may not be accurate! Reveiw the above examples.
  86. .PA
  87. .PA4
  88. Linking Spread Sheets:
  89.  
  90.    A cell may reference another cell contained in a prior sheet by
  91.    Linking to the prior sheet. Linking is accomplished by pressing
  92.    "Ctrl L" and typing in the name of the sheet you want linked. You
  93.    are prompted for the cell reference (ie E12) on the linked sheet.
  94.  
  95.    You may not edit a linked cell. To make changes, you must delete
  96.    the linked cell and re-link. Linked data is loaded from prior sheets
  97.    at the time of linking or when ever a sheet is loaded if the sheet
  98.    being loaded has cells using the linking function.
  99.  
  100.    Important:   Be sure you know the correct cell coordinate for the
  101.                 data thats on the sheet that you want to link to
  102.                 before performing the link.
  103.  
  104. .PA
  105. .PA5
  106.         The following built-in functions are available:
  107. Example                  Purpose/Description
  108.  
  109. ABS(num)    - Returns the Absolute Value of a number.
  110. ARCTAN(num) - Returns the Angle, in radians, whose tangent is 'num'.
  111. COS(num)    - Returns the Cosine of a number
  112. FRAC(num)   - Returns the Fractional part of a number.
  113. INT(num)    - Returns the Integer Value of a number.
  114. SIN(num)    - Returns the Sine of a number.
  115. SQRT(num)   - Returns the Square Root of a number.
  116. SQR(num)    - Returns the Square of a number.
  117. LN(num)     - Returns the Natural Logarithm of a number.
  118. LOG(num)    - Results in the Logarithm (base 10) of a number.
  119. EXP(num)    - Returns the exponential of a number.
  120. AVG(cell ref : cell ref) - Averages cells within the references.
  121.  
  122. Note: that the next functions are NOT preceded by any characters.
  123.     (cell ref : cell ref) - Sums the Total all cells within the references.
  124.     (cell ref < cell ref) - Returns the lessor value of the references.
  125.     (cell ref > cell ref) - Returns the greater value of the references.
  126. Note: 'num' may be a number, cell reference or formula.
  127. .PA
  128. .PA6
  129. Special Functions:
  130.  
  131. CHOOSE(cell ref, cell ref : cell ref) - Choose will find the value in the
  132. "nth" item in a range of cells between "cell ref : cell ref" where the
  133. first cell ref following CHOOSE( is the counter for the "nth" location.
  134. A definiton for CHOOSE is: Choose the "nth" item in the following range.
  135.  
  136. LOOKUP(cell ref, cell ref : cell ref) - Lookup will compare the value of
  137. the first cell reference following LOOKUP( to the values in the range
  138. listed in the next two cell references. When a value is found that is
  139. less than or equal to the initial lookup value, then the lookup function
  140. returns the value of the cell in the next column (same row) as the found
  141. value.
  142.  
  143. Note: Neither the CHOOSE or LOOKUP functions may be used directly within
  144. a formula. However, you may reference a cell that uses LOOKUP or CHOOSE.
  145.  
  146. Note: cell ref means the column and row for a cell ie "B15"
  147. .PA
  148. .PA7
  149.       Entering Data (Text, Numbers, Formulas or Graphic characters):
  150.  
  151. Function Keys F5, F7 and F9 create horizontal graphic bars
  152.  
  153. Function Keys F6, F8 and F10 create vertical graphic bars
  154.  
  155. To enter data move the cursor to the cell and type the desired data.
  156. Entering 'letters' puts you in the text mode and entering 'numbers' or
  157. formulas places you in the 'value' mode.
  158.  
  159. To enter a formula in a cell begin by typing a left paren "(" followed
  160. by your formula. Pressing the "=" equals key allows you to enter a
  161. simple formula, such as single cell reference added to a number.
  162.  
  163. Note:  The only way to delete a formula is by pressing the <ESC> key
  164. while in the Edit Mode. When finished entering data press the <return>
  165. key. Pressing <return> will also move you to the next right cell.
  166.  
  167. .PA
  168. .PA8
  169. Summary of Commands:
  170. To display the "Function Prompts" Press the "/" key then press the
  171. Letter for the function desired. ie press "/L" to load a file.
  172.  
  173.     A   Adjust used memory. Frees memory if available.
  174.     B   Blanks the current cell and erases its contents.
  175.     C   Copies a cell to range of cells to another location.
  176.     D   Delete a row or column at the cursor location.
  177.     E   Allows you to Edit a cell and to delete formulas.
  178.     F   Formats cell or cells to # decimals or cell width.
  179.     G   Go directly to any cell desired.
  180.     H   Reads in this Help File from disk.
  181.     I   Inserts a blank row or column at cursor location.
  182.     L   Loads a prior spread sheet from disk.
  183.     M   Mode switch for automatic or manual recalculate.
  184.     Q   Quits the program.
  185.     P   Prints Sheet to printer or disk text file.
  186.     R   Recalculates the spread sheet.
  187.     S   Saves a spread sheet to disk data file.
  188.     U   Utilities for disk files and directories.
  189.     V   Views selected disk or logged sub directory.
  190.     Z   Zaps the sheet and clears all cells of data.
  191.